home *** CD-ROM | disk | FTP | other *** search
/ T&A 2 the Maxx 3 / T and A 2 The Maxx Number 3.iso / viewers / unixview / xgl17dta.z / xgl17dta / Makefile < prev    next >
Makefile  |  1991-07-24  |  498b  |  27 lines

  1. #ident "@(#)Makefile    1.14 91/04/02 XGRASP"
  2. CFLAGS=-O
  3. OBJS=xgrasp.o parser.o exec.o readfiles.o gif.o fades.o usleep.o strdup.o
  4. SRCS=$(OBJS:.o=.c)
  5. HDRS=grasp.h patchlevel.h
  6. LIBS=-lX11 -lm
  7. MANS=glib.man xgrasp.man
  8. TAR=README $(SRCS) $(HDRS) Makefile Imakefile glib.c docs $(MANS)
  9.  
  10. all: xgrasp glib
  11.  
  12. debug: all
  13. debug:=CFLAGS=-g
  14.  
  15. xgrasp: $(OBJS)
  16.     cc -o xgrasp $(OBJS) $(LIBS)
  17.  
  18. glib: glib.o
  19.     cc -o glib glib.o
  20.  
  21. tar: $(TAR)
  22.     tar cvf xgrasp.tar $(TAR)
  23.     -rm xgrasp.tar.Z
  24.     compress xgrasp.tar
  25.  
  26. .KEEP_STATE:
  27.